home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / teaser.dir / 00088_Script_zapit < prev    next >
Text File  |  1998-08-25  |  382b  |  24 lines

  1. on mousedown me
  2.   global zap 
  3.   
  4.   if zap=1 then 
  5.     cursor -1
  6.     set zap=0
  7.     set the loc of sprite 15 to point(76, 448)
  8.     exit
  9.   end if  
  10.   
  11.   if zap=0 then 
  12.     cursor 200
  13.     set zap=1  
  14.   end if
  15. end
  16.  
  17. on exitframe me
  18.   global zap  
  19.   if zap=1 then
  20.     set the locv of sprite 15 to the mousev
  21.     set the loch of sprite 15 to the mouseh
  22.   end if
  23. end
  24.